home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / savebufferas_jpeg.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  57 lines

  1. /*
  2.  * $VER: SaveBufferAs_JPEG.ifx.pre 2.5 (11.04.96)
  3.  * Copyright © 1992-1996 Nova Design, Inc.
  4.  * Written by Thomas Krehbiel
  5.  *
  6.  * Save main buffer as JPEG.
  7.  *
  8.  * Inputs:
  9.  *    Word(Arg(1),1) = Sequence number (?)
  10.  *    Word(Arg(1),2) = Total number of frames (N)
  11.  *
  12.  * Returns:
  13.  *    0 if successful, non-zero on failure
  14.  *
  15.  * Revision History:
  16.  *
  17.  *    25.09.95 tek   2.1a: Fixed JPEG quality setting.
  18.  */
  19.  
  20. OPTIONS RESULTS
  21.  
  22. base = 'Autofx_SaveBufferAsJPEG_'
  23. seq  = WORD(ARG(1),1)
  24.  
  25. lastpath = GETCLIP(base||'Path'||seq)
  26. lastext  = GETCLIP(base||'Ext'||seq)
  27. lastq    = GETCLIP(base||'Quality'||seq)
  28.  
  29. IF lastext = "" & lastpath = "" THEN lastext = ".JPG"
  30.  
  31. IF lastpath = "" THEN DO
  32.    GetPrefs SavePath
  33.    lastpath = result
  34.    END
  35.  
  36. IF lastq = "" THEN lastq = 90
  37.  
  38. Gadget.1 = 'STRING  120  5 200 14 "Output Path:" "'lastpath'"'
  39. Gadget.2 = 'FILEREQ 321  5  20 14 "Output Path:" "'lastpath'" AT=1 DIRONLY'
  40. Gadget.3 = 'STRING  120 20 200 14 "New Extension:" "'lastext'"'
  41. Gadget.4 = 'TEXT    120 35   1  1 "(** = current frame number)" 1'
  42. Gadget.5 = 'INTEGER 120 48  50 14 "JPEG Quality:"' lastq 'JU=0'
  43. Gadget.6 = 'TEXT    180 51   1  1 "(25-100)"'
  44. Gadget.7 = 'END'
  45.  
  46. NewComplexRequest '"Save Buffer As JPEG"' Gadget 360 68
  47. IF rc ~= 0 THEN EXIT rc
  48.  
  49. IF result.5 < 25 THEN result.5 = 25
  50. IF result.5 > 100 THEN result.5 = 100
  51.  
  52. CALL SETCLIP(base||'Path'||seq, result.1)
  53. CALL SETCLIP(base||'Ext'||seq,  result.3)
  54. CALL SETCLIP(base||'Quality'||seq,  result.5)
  55.  
  56. EXIT
  57.